I’ve been trying to install pyserial for blender, but I can only install it to python32 on my C drive, is there anything i can do to have it install to blender or have blender import from python32
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Blender has its own python installation and libraries. You can try to install your packages to blender directly. My dir for example:
...\Blender 2.63\2.63\scripts\modulesOtherwise, you can always hardcode the paths directly in your code with
sys.path.append("...")More info about installing modules available here, read about
python setup.py install --home=<dir>