University of Iowa IOT Project, Spring 2023
Note: You can link your pipenv environment with an ide like Pycharm
The pipenv Python interpreter is stored in ~/.local/share/virtualenvs
Never install packages through the IDE, still use the pipenv command in the terminal (fact check this)
###Link with more information
https://realpython.com/pipenv-guide/#pipenv-introduction
In your source code root directory:
$ pip install pipenv
In your source code root directory:
$ pipenv shell
$ pipenv lock
Do this when you woul dlike to leave the virtual environment:
$ deactivate
This will download any new dependancies added in version controll.
$ pipenv install
Use this to install new packages. This will update the Pipenv file for version control.
$ pipenv install <package_name>