You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I tried using VirtualFleet using a pip install inside a venv.
Installation goes smoothly but when I try to import the module in a python script I get "No module named VirtualFleet".
Same issue with a fresh new venv.
Do you have any idea of what may be wrong ?
OS: Windows
Python version : 3.12.2
Pip version : 24.2
The text was updated successfully, but these errors were encountered:
Hi @Flavi1P ,
Yes, VirtualFleet is not completely stable for pip install, sorry about that. You can try to install from this branch : pip install git+https://github.com/euroargodev/VirtualFleet.git@fix_pipinstall to see if it's better, or you can clone the repo and add it to your path :
import sys
sys.path.insert(0, "path_to_virtualfleetrepo")
import virtualargofleet as vaf
Hi,
I tried using VirtualFleet using a pip install inside a venv.
Installation goes smoothly but when I try to import the module in a python script I get "No module named VirtualFleet".
Same issue with a fresh new venv.
Do you have any idea of what may be wrong ?
OS: Windows
Python version : 3.12.2
Pip version : 24.2
The text was updated successfully, but these errors were encountered: