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
I used conan v1.XX as that was labeled as necessary in the build instructions; I'll refactor that and get python 3.12 stood up
It seems the issue I am running into was covered in the bug fix you provided, thanks!
Describe the bug
Python 3.12 has removed the 'imp' module:
https://github.com/python/cpython/issues/98040
This is blocking my ability to build BSK using the venv.
To reproduce
Build basic setup provided in Docs for MacOS:
https://hanspeterschaub.info/basilisk/Install/installOnMacOS.html
$ xcode-select --install
$ brew install swig
$ brew install cmake
$ brew link cmake
DOWNLOAD LATEST Python version, Python 3.12
$ python3 -m venv .venv
(.venv) $ pip3 install wheel
(.venv) $ pip3 install -v "conan==1.61.0"
$ python3 conanfile.py
error:
According to Python 3.12 docs, 'imp' module has been replaced.
https://github.com/python/cpython/issues/98040
Expected behavior
Fully build sim
Resolved this locally by removing Python 3.12.0 and downloading Python 3.11.6 (Note: operating with only 1 python version at all times)
Desktop (please complete the following information):
Additional context
Add any other context about the problem or potential solution paths here.
This was resolved locally by using Python 3.11.6
The text was updated successfully, but these errors were encountered: