logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Create Pipenv Project - Manage Python Dependencies | Online Free DevTools by Hexmos

Create Python project environments with Pipenv. Manage dependencies and virtual environments for seamless development. Free online tool, no registration required.

pipenv

Simple and unified Python development workflow. Manage packages and the virtual environment for a project. More information: https://pypi.org/project/pipenv.

  • Create a new project:

pipenv

  • Create a new project using Python 3:

pipenv --three

  • Install a package:

pipenv install {{package}}

  • Install all the dependencies for a project:

pipenv install

  • Install all the dependencies for a project (including dev packages):

pipenv install --dev

  • Uninstall a package:

pipenv uninstall {{package}}

  • Start a shell within the created virtual environment:

pipenv shell

  • Generate a requirements.txt (list of dependencies) for a project:

pipenv lock --requirements

See Also