Python Forum
[PyCharm] Working with virtual environment - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: [PyCharm] Working with virtual environment (/thread-28415.html)



[PyCharm] Working with virtual environment - AndrzejB - Jul-18-2020

I want test spaCy: https://spacy.io/
I do:
pip install spacy
python -m spacy download en_core_web_sm
but in PyCharm I don't see module spacy. Fortunately I can install this module with PyCharm.
PyCharm uses venv.
But how download en_core_web_sm ?
For each project must be installed spacy and dependencies? How make spacy and dependencies sharable among projects? Is possible don't use venv in PyCharm or better is use venv but how in similar projects use the same dependencies?


RE: [PyCharm] Working with virtual environment - AndrzejB - Jul-18-2020

Problems were because I have Mint 20 with Python 3.8 and old PyCharm installed via Software Center with Python 3.7.
Now I install PyCharm by tar.gz and is OK (is Python 3.8)