I am doing some tests with virtualenv to see how it works and I think I ran into some trouble.
First I created a folder and changed my path to it:
$ mkdir new_folder
$ cd new_folder
Then I created a virtualenv and activated it:
$ virtualenv my_first_venv
$ source my_first_venv/bin/activate
I installed only one package to make a test:
$ pip3 install wget
And I confirmed it was installed indeed:
(my_first_venv) #this just shows up when you activate it
$pip list
Package Version
------------------
pip 20.0.2
setuptools 41.2.0
wget 3.2
But if I create a .py file in that same path, and I write "import wget" and run it, I get an error message stating that there is no such module.
Does anyone have an idea of how to fix this?