-
Notifications
You must be signed in to change notification settings - Fork 481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
client does not install on linux with python 3.11 #660
Comments
You need to install it from source (git clone this repository), see the docs This file: https://github.com/bitcraze/crazyflie-clients-python/blob/master/setup.py |
Yes, I change it and install it from source. it is working now. Thanks for you support. |
Do I need to follow the instruction given below. I don't want to reinstall the x86 brew has I already used brew install other softwares. Please explain. Apple M1 Installing brew for x86_64, it will be installed in /usr/local by defaultarch --x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" Now we have to use brew and then python from /usr/local ...arch --x86_64 brew install [email protected] libusb The arch command is not required anymore since everything brew installed are x86 executables |
Please start a new discussion, it does not fit the title "client does not install on linux with python 3.11" of this issue |
So our general conclusion from the triage meeting is: Let's bump up the version of pyzmq and see what happens. We don't expect this to fail but we got to test it out first. |
Found on ubuntu with python 3.11
There seems to be a problem with the dependency to pyzmq in setup.py
pyzmq~=22.3
pyzmq 25.0 installs, but I have not tested if it works.
Workaround:
For normal client usage zmq is not used and should cause any problems also if it does not work anyway.
In
setup.py
change'pyzmq~=22.3',
to'pyzmq~=25.0',
The text was updated successfully, but these errors were encountered: