apsw-3.12.2.post1-cp35-cp35m-win32.whl

http://www.lfd.uci.edu/~gohlke/pythonlibs/#apsw

with the command: pip install apsw-3.12.2.post1-cp35-cp35m-win32.whl

Mistake:

C:\Users\UserName>pip install apsw-3.12.2.post1-cp35-cp35m-win32.whl Requirement 'apsw-3.12.2.post1-cp35-cp35m-win32.whl' looks like a filename, but the file does not exist Processing c:\users\UserName\apsw-3.12.2.post1-cp35-cp35m-win32.whl Exception: Traceback (most recent call last): File "c:\users\UserName\appdata\local\programs\python\python35-32\lib\site-packages\pip\basecommand.py", line 209, in main status = self.run(options, args) File "c:\users\UserName\appdata\local\programs\python\python35-32\lib\site-packages\pip\commands\install.py", line 310, in run wb.build(autobuilding=True) File "c:\users\UserName\appdata\local\programs\python\python35-32\lib\site-packages\pip\wheel.py", line 748, in build self.requirement_set.prepare_files(self.finder) File "c:\users\UserName\appdata\local\programs\python\python35-32\lib\site-packages\pip\req\req_set.py", line 360, in prepare_files ignore_dependencies=self.ignore_dependencies)) File "c:\users\UserName\appdata\local\programs\python\python35-32\lib\site-packages\pip\req\req_set.py", line 577, in _prepare_file session=self.session, hashes=hashes) File "c:\users\UserName\appdata\local\programs\python\python35-32\lib\site-packages\pip\download.py", line 798, in unpack_url unpack_file_url(link, location, download_dir, hashes=hashes) File "c:\users\UserName\appdata\local\programs\python\python35-32\lib\site-packages\pip\download.py", line 705, in unpack_file_url unpack_file(from_path, location, content_type, link) File "c:\users\UserName\appdata\local\programs\python\python35-32\lib\site-packages\pip\utils\__init__.py", line 599, in unpack_file flatten=not filename.endswith('.whl') File "c:\users\UserName\appdata\local\programs\python\python35-32\lib\site-packages\pip\utils\__init__.py", line 482, in unzip_file zipfp = open(filename, 'rb') FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\UserName\\apsw-3.12.2.post1-cp35-cp35m-win32.whl' 
  • On the same page it’s written : Use pip version 8 or newer to install the downloaded .whl files. - approximatenumber
  • What happens if you execute pip install *.whl ? - jfs
  • the error says that the file does not exist in the c:\users\UserName directory. If you downloaded apsw*.whl to some other place, then specify the full path to this file. By the way, if you have 64-bit Windows, then you need a file with amd64 in the name. - jfs
  • @jfs, why amd64 is needed for 64-bit? This is not necessary: ​​on the 64, after all, the 32 also work. And the version of python, for amd64, probably also needs 64-bit ... - gil9red
  • Of course, if the python is 32-bit, then put the 32-bit expansion module. - jfs

0