2016-10-06 14:04:37

Hi guise. As the post said, I don't know how to add the libraries. I have some libraries But I don't know where to paste them to import them in my program.
Any helps really a pretiated

---
Co-founder of Sonorous Arts.
Check out Sonorous Arts on github: https://github.com/sonorous-arts/
my Discord: kianoosh.shakeri2#2988

2016-10-06 15:56:25

There are multiple ways.
1. You can download the library and copy it into the same folder wher your python script is located (not recommended).
2. You can download the library and copy it into the python/lib/sitepackages subfolder.
3. You can install the library if installer is available for your python version.
4. The easiest way: you can use pip install command if you have installed pip in your python version.

2016-10-06 20:06:09

What are the differences between pasting the folder inside "site packages" and running setup.py?

2016-10-06 20:47:56

Its more or less the same, either way the library would end up in python/lib/sitepackages although using setup.py is a bit more straight forward and may also pack it neatly into an *.egg file too. Some libraries might not come with a setup.py though, or require additional compiling and steps to install.

Just curious, which libraries are you trying to install kainoosh?

-BrushTone v1.3.3: Accessible Paint Tool
-AudiMesh3D v1.0.0: Accessible 3D Model Viewer

2016-10-07 15:14:12

libaudioverse
And thanks for your help hrvoge

---
Co-founder of Sonorous Arts.
Check out Sonorous Arts on github: https://github.com/sonorous-arts/
my Discord: kianoosh.shakeri2#2988

2016-10-08 10:02:45

Libaudioverse is distributed as Python wheel package, which means you'll definitely need pip to install it.

2016-10-12 10:48:27 (edited by ctoth 2016-10-12 10:49:53)

To get the most recent version of libaudioverse specifically, issue:

pip install --pre libaudioverse

You want the prerelease as 0.9 has a lot of nice stuff in it and I don't believe @camlorn has cut a release yet.
You'll need a relatively recent version of the pip package to accomplish this.
If you already have pip installed, but this command doesn't work, issue python -m pip install -U pip
then try again smile

2016-10-12 15:49:04

thanks

---
Co-founder of Sonorous Arts.
Check out Sonorous Arts on github: https://github.com/sonorous-arts/
my Discord: kianoosh.shakeri2#2988