i had a python 3.9.2 activestate installed.
i tried to uninstall this version. unfortunately i deleted the folder
/downloads/Python-3.9Beta
I installed new Python 3.10.2
When i try to install a package via pip3 lets say telethon i get the following message:
Could not find project file at /downloads/Python-3.9Beta
Since the state tool installs virtual environments by default, you can run multiple versions of Python on your system
If you’ve installed both Python 3.9Beta and Python 3.10.2, you likely have 2 projects on your system. You can list which projects you have installed by running state projects
You can see which project is currently active by running state show
You can switch between projects by running state activate <organization_name>/<project_name>
You might try activating your Python 3.10.2 project by doing the following:
Make sure you are logged into the Platform by running state auth
Run state activate facetoface/Python-3.10.2 (assuming your org name is face-to-face and the project is actually called Python 3.10.2)
If you want to uninstall everything and start again, you should first stop all state tool processes by running the following at a CMD prompt: powershell -Command "& $([scriptblock]::Create((New-Object Net.WebClient).DownloadString('https://platform.activestate.com/dl/cli/stop.ps1')))"