Error when installing on Windows 10 with Anaconda3
See original GitHub issueI get the following error message when running pip install quiver_engine
on Windows 10 with Anaconda 3:
Building wheels for collected packages: quiver-engine
Running setup.py bdist_wheel for quiver-engine ... error
Complete output from command C:\Users\User\Anaconda3\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\User\\AppData\\Local\\Temp\\pip-build-u5woavsp\\quiver-engine\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().repla
ce('\r\n', '\n'), __file__, 'exec'))" bdist_wheel -d C:\Users\User\AppData\Local\Temp\tmp53j1c7yppip-wheel- --python-tag cp35:
running bdist_wheel
running build
running build_py
creating build
creating build\lib
creating build\lib\quiver_engine
copying quiver_engine\imagenet_utils.py -> build\lib\quiver_engine
copying quiver_engine\layer_result_generators.py -> build\lib\quiver_engine
copying quiver_engine\server.py -> build\lib\quiver_engine
copying quiver_engine\util.py -> build\lib\quiver_engine
copying quiver_engine\__init__.py -> build\lib\quiver_engine
running egg_info
writing quiver_engine.egg-info\PKG-INFO
writing dependency_links to quiver_engine.egg-info\dependency_links.txt
writing requirements to quiver_engine.egg-info\requires.txt
writing top-level names to quiver_engine.egg-info\top_level.txt
warning: manifest_maker: standard file '-c' not found
reading manifest file 'quiver_engine.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'quiver_engine.egg-info\SOURCES.txt'
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\User\AppData\Local\Temp\pip-build-u5woavsp\quiver-engine\setup.py", line 21, in <module>
'pillow'
File "C:\Users\User\Anaconda3\lib\distutils\core.py", line 148, in setup
dist.run_commands()
File "C:\Users\User\Anaconda3\lib\distutils\dist.py", line 955, in run_commands
self.run_command(cmd)
File "C:\Users\User\Anaconda3\lib\distutils\dist.py", line 974, in run_command
cmd_obj.run()
File "C:\Users\User\Anaconda3\lib\site-packages\wheel\bdist_wheel.py", line 179, in run
self.run_command('build')
File "C:\Users\User\Anaconda3\lib\distutils\cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "C:\Users\User\Anaconda3\lib\distutils\dist.py", line 974, in run_command
cmd_obj.run()
File "C:\Users\User\Anaconda3\lib\distutils\command\build.py", line 135, in run
self.run_command(cmd_name)
File "C:\Users\User\Anaconda3\lib\distutils\cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "C:\Users\User\Anaconda3\lib\distutils\dist.py", line 974, in run_command
cmd_obj.run()
File "C:\Users\User\Anaconda3\lib\site-packages\setuptools-27.2.0-py3.5.egg\setuptools\command\build_py.py", line 53, in run
File "C:\Users\User\Anaconda3\lib\site-packages\setuptools-27.2.0-py3.5.egg\setuptools\command\build_py.py", line 118, in build_package_data
File "C:\Users\User\Anaconda3\lib\site-packages\setuptools-27.2.0-py3.5.egg\setuptools\command\build_py.py", line 66, in __getattr__
File "C:\Users\User\Anaconda3\lib\site-packages\setuptools-27.2.0-py3.5.egg\setuptools\command\build_py.py", line 83, in _get_data_files
File "C:\Users\User\Anaconda3\lib\site-packages\setuptools-27.2.0-py3.5.egg\setuptools\command\build_py.py", line 95, in _get_pkg_data_files
File "C:\Users\User\Anaconda3\lib\site-packages\setuptools-27.2.0-py3.5.egg\setuptools\command\build_py.py", line 114, in find_data_files
File "C:\Users\User\Anaconda3\lib\site-packages\setuptools-27.2.0-py3.5.egg\setuptools\command\build_py.py", line 198, in exclude_data_files
File "C:\Users\User\Anaconda3\lib\site-packages\setuptools-27.2.0-py3.5.egg\setuptools\command\build_py.py", line 234, in <genexpr>
File "C:\Users\User\Anaconda3\lib\distutils\util.py", line 125, in convert_path
raise ValueError("path '%s' cannot be absolute" % pathname)
ValueError: path '/' cannot be absolute
Issue Analytics
- State:
- Created 7 years ago
- Reactions:3
- Comments:17
Top Results From Across the Web
Troubleshooting — Anaconda documentation
Windows error: Failed to create Anaconda menus or Failed to add Anaconda to the system PATH. During installation on a Windows system, a...
Read more >Anaconda install error on windows
During installation on a Windows system, a dialog box appears that says “Failed to create Anaconda menus, Abort Retry Ignore” or “Failed to...
Read more >problem installing anaconda on windows 10 - only getting the ...
I then press skip, and the installation finishes without displaying any errors. When I then however try to open the app, the only...
Read more >Why isn't Anaconda for Windows Installing Properly?
Anaconda installs and updates can silently fail due to conflicts with 3rd party antivirus (for me it's WebRoot ) programs.
Read more >Installing Anaconda on Windows - Problem Solving with Python
Installing Anaconda on Windows · 1. Visit the Anaconda downloads page · 2. Select Windows · 3. Download · 4. Open and run...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Replace ‘quiverboard/dist/’ with ['quiverboard/dist/’] in setup.py, then install with “python setup.py install”.
Instead of installing quiver by using ‘pip install quiver’, install from git directly as follows.
This should solve the problem.