You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Make sure you have [`python3.8` installed and on your `PATH`](https://docs.python-guide.org/starting/installation/).
403
+
2.[Install the `pipenv` dependency manager](https://pipenv.readthedocs.io/en/latest/install/#installing-pipenv)
404
+
* with [pipx](https://pipxproject.github.io/pipx/)`$ pipx install pipenv`
405
+
* with [Homebrew/Linuxbrew](https://pipenv.readthedocs.io/en/latest/install/#homebrew-installation-of-pipenv)`$ brew install pipenv`
406
+
* with [pip/pip3 directly](https://pipenv.readthedocs.io/en/latest/install/#pragmatic-installation-of-pipenv)`$ pip install --user pipenv`
407
+
3. Create virtual environment and install all dependencies `$ pipenv sync --dev`
408
+
4. Activate/enter the virtual environment `$ pipenv shell`
409
+
410
+
And don't despair if don't get the python setup working on the first try. No one did. Guido got pretty close... once. But that's another story. Good luck.
403
411
404
412
## Running / Development
405
413
@@ -408,11 +416,31 @@ You will need the following things properly installed on your computer.
0 commit comments