Install fails on Python 3.5.1
See original GitHub issueThis seems to be due to an older nltk version. nltk 3.2.1 installs fine.
Collecting nltk==2.0.5 (from newspaper)
Downloading nltk-2.0.5.tar.gz (954kB)
100% |████████████████████████████████| 958kB 105kB/s
Complete output from command python setup.py egg_info:
Downloading http://pypi.python.org/packages/source/d/distribute/distribute-0.6.21.tar.gz
Extracting in /tmp/tmp_s3pa1pm
Traceback (most recent call last):
File "/tmp/pip-build-0cdit31h/nltk/distribute_setup.py", line 143, in use_setuptools
raise ImportError
ImportError
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<string>", line 20, in <module>
File "/tmp/pip-build-0cdit31h/nltk/setup.py", line 23, in <module>
distribute_setup.use_setuptools()
File "/tmp/pip-build-0cdit31h/nltk/distribute_setup.py", line 145, in use_setuptools
return _do_download(version, download_base, to_dir, download_delay)
File "/tmp/pip-build-0cdit31h/nltk/distribute_setup.py", line 125, in _do_download
_build_egg(egg, tarball, to_dir)
File "/tmp/pip-build-0cdit31h/nltk/distribute_setup.py", line 99, in _build_egg
_extractall(tar)
File "/tmp/pip-build-0cdit31h/nltk/distribute_setup.py", line 467, in _extractall
self.chown(tarinfo, dirpath)
TypeError: chown() missing 1 required positional argument: 'numeric_owner'
Issue Analytics
- State:
- Created 7 years ago
- Comments:5
Top Results From Across the Web
Issue 25954: Python 3.5.1 installer fails on Windows 7
When I try to install by running N:\Downloads\python-3.5.1.exe, it fails with the error shown above. When I copy the file to the C:...
Read more >Issues installing on windows 10 python 3.5.1 · Issue #10 · fogleman ...
On freshly upgraded pip and setup tools Im having issues getting past a fail to install of pyHull. Manual pip install fails as...
Read more >Pip doesn't recognise python 3.5.1 as the latest version
Your default pip location ( pip ) is probably used for Python 2.7. For Python 3.5 you should have pip3.5 available to install...
Read more >setuptools 3.5.1 - PyPI
Easily download, build, install, upgrade, and uninstall Python packages. ... If you have working, tested patches to correct problems or add features, ...
Read more >Install Python support - Visual Studio (Windows)
Exe.x64;PackageAction:DownloadPackage;ReturnCode:0x80070193 . These errors occur when the download or install of Python from https://python.org ...
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
I think you’re installing the wrong version of newspaper… the Python 3 version is
newspaper3k
. Can you try:pip install newspaper3k
?@michaelmior True, currently the installation instructions are somewhere far below in the readme…