belangeo / pyo

Python DSP module
GNU Lesser General Public License v3.0
1.28k stars 130 forks source link

'pip install pyo' is not working? #204

Closed Nasko-5 closed 3 years ago

Nasko-5 commented 3 years ago

When i tried to install pyo using pythons package manager pip i get an error. I dont know what caused it as i dont understand the error it threw.

here it is:

` ERROR: Command errored out with exit status 1: command: 'c:\program files\python39\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\Me\AppData\Local\Temp\pip-install-ehyksn05\pyo_55ac672e7781487e96d355454f9a7442\setup.py'"'"'; file='"'"'C:\Users\Me\AppData\Local\Temp\pip-install-ehyksn05\pyo_55ac672e7781487e96d355454f9a7442\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\Me\AppData\Local\Temp\pip-pip-egg-info-g_uckdzf' cwd: C:\Users\Me\AppData\Local\Temp\pip-install-ehyksn05\pyo_55ac672e7781487e96d355454f9a7442\ Traceback (most recent call last): File "", line 1, in File "C:\Users\Me\AppData\Local\Temp\pip-install-ehyksn05\pyo_55ac672e7781487e96d355454f9a7442\setup.py", line 215, in [os.path.join(data_files_common_path, f) for f in os.listdir(data_files_common_path) if f.endswith(".dll")])] FileNotFoundError: [WinError 3] The system cannot find the path specified: 'win64dlls\win64_pyo_data_files_common'

ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.`

belangeo commented 3 years ago

There is no wheel for python 3.9 yet... And it's unlikely that compiling from sources will work without external dependencies. You should stick with 3.8 for the time being...

Nasko-5 commented 3 years ago

There is no wheel for python 3.9 yet... And it's unlikely that compiling from sources will work without external dependencies. You should stick with 3.8 for the time being...

Okay, thank you.