We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pipenv install -r requirements.txt
conda install --yes --file requirements.txt
This is not enough according to https://www.technologyscout.net/2017/11/how-to-install-dependencies-from-a-requirements-txt-file-with-conda/ . You need to run
while read requirement; do conda install --yes $requirement; done < requirements.txt
The text was updated successfully, but these errors were encountered:
Anaconda makes it possible to create a separate environment: https://code.visualstudio.com/docs/python/environments#_conda-environments I think that this will be sufficient. Agree?
Sorry, something went wrong.
Or use Spider as your IDE
Spider
I remove the following from the readme as I don't get the command. And the notebook variant is wrong.
I am curious about the venv commands though.
## Set-up virtual environment py -3 -m venv env env\scripts\activate ## Jupyter notebook #%% msg = "Hello World" print(msg) %% [markdown]
HenryBol
No branches or pull requests
pipenv
pipenv install -r requirements.txt
anaconda
conda install --yes --file requirements.txt
This is not enough according to https://www.technologyscout.net/2017/11/how-to-install-dependencies-from-a-requirements-txt-file-with-conda/ . You need to run
The text was updated successfully, but these errors were encountered: