Hello,
Watching Learn Python 3, pipenv video (https://www.codecademy.com/courses/learn-python-3/videos/learn-python3-pipenv) and stuck at creating virtual env. I installed the latest Python version, in CMD I installed pipenv using pip. After that I installed VS Code with Python extension. First I created a new folder. In this folder, I created venv and installed numpy module. Then I type pipenv shell and python3. When I try to import numpy, it gives and error:
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'numpy'
Pipfile:
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
numpy = "*"
[dev-packages]
[requires]
python_version = "3.9"
Please, help. I was googling it for almost 2 hours, reinstalled python an pip and it’s not helping.