Learn Before
Concept
Installing packages with pipenv
One can install packages in the directory of their project with pipenv using the following command:
pwd /path/to/my/project pipenv install <package>
This will install the given package for your projects environment. On the first installation of a package for a project, pipenv also creates a Pipfile and a virtual environment for the project.
0
1
Updated 2021-05-25
Tags
Python Programming Language
Data Science