
In my case pip will install pyserial as a dependency. When you run pip install odrive what is your output? I tried uninstalling PySerial, and then installing odrive. With that selected in the device list choose ‘libusb-win32’ from the target driver list and then press the large ‘install driver’ button. Check ‘List All Devices’ from the options menu, and select ‘ODrive 3.x Native Interface (Interface 2)’.
Use the Zadig utility to set ODrive driver to libusb-win32.Plug in a USB cable into the microUSB connector on ODrive, and connect it to your PC.Install the ODrive tools by typing pip install odrive Enter.Install dependencies by typing pip install pywin32=222 Enter.Standalone Python: In the start menu, type cmd Enter.Anaconda: In the start menu, type Anaconda Prompt Enter.If you have trouble with this step then refer to this walkthrough. If you have Python 2 installed alongside Python 3, replace pip by C:\Users\YOUR_USERNAME\AppData\Local\Programs\Python\Python36-32\Scripts\pip.
Execute the downloaded file and follow the instructions.
Standalone Python: Download the installer from here. Anaconda: Download the installer from here. We recommend the Anaconda distribution because it packs a lot of useful scientific tools, however you can also install the standalone python. I don't have a setup.py yet.Description in getting-started.md with Anaconda. The problem is really with importing my own module. Just to clarify numpy installed correctly, works and is listed when running pip freeze. So far, I didn't mess with PYTHONPATH as suggested by the top answer because I also read that you shouldn't have to touch it when using pip and I don't want to further break the system. Is it possible that sudo pip install broke something here? If so, how can I fix it? Now, I read that you should never use sudo with pip install, but it's too late. Also I think I know what might have caused the problem: I ran sudo pip install numpy to install NumPy. The difference to the other question is that it was working fine before and the problem only occurs on one machine (it works on two other machines). įor example, I have a module at myfolder/mymodule.py that I try to load with from myfolder import mymodule. Similar to this question, I have problems importing my own modules and get an ImportError: No module named.