当前位置:   article > 正文

pip安装 numpy, nltk,torch,transformers_runtimeerror: numpy is not available

runtimeerror: numpy is not available

目录

安装numpy

安装 nltk

安装Torch 

 安装transformers


安装 numpy

安装numpy的话参考下边的链接即可(亲测有效):

Linux下安装numpy_abc_321a的博客-CSDN博客_linux安装numpy

或者用pip 安装

pip install numpy

常见问题:

(1)  numpy版本不正确,所以报错。

  1. Traceback (most recent call last):
  2. File "run_disamb.py", line 471, in <module>
  3. main()
  4. File "run_disamb.py", line 414, in main
  5. global_step, tr_loss = train(args, train_dataset, model, tokenizer)
  6. File "run_disamb.py", line 205, in train
  7. results = evaluate(args, model, tokenizer)
  8. File "run_disamb.py", line 280, in evaluate
  9. all_pred_indexes = torch.cat(all_pred_indexes).numpy()
  10. RuntimeError: Numpy is not available

 解决方案: 先用pip卸载numpy,然后再装版本稍微高一点的numpy。比如我的是先从1.19.0 版本升到 1. 20.0版本 ,结果还是不行, 后来升到 1.22.3 版本就可以了。

$ pip uninstall numpy

$ pip install numpy==1.22.3 -i https://pypi.douban.com/simple/

 (2)  由于下载源是国外的,一直报错超时。

  1. (pytorch_1.10) [acctrm9ew5@login04 ~]$ pip install numpy==1.20
  2. Collecting numpy==1.20
  3. Downloading numpy-1.20.0-cp38-cp38-manylinux2010_x86_64.whl (15.4 MB)
  4. ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 6.3/15.4 MB 11.5 kB/s eta 0:13:04
  5. ERROR: Exception:
  6. Traceback (most recent call last):
  7. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py", line 435, in _error_catcher
  8. yield
  9. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py", line 516, in read
  10. data = self._fp.read(amt) if not fp_closed else b""
  11. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py", line 90, in read
  12. data = self.__fp.read(amt)
  13. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/http/client.py", line 459, in read
  14. n = self.readinto(b)
  15. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/http/client.py", line 503, in readinto
  16. n = self.fp.readinto(b)
  17. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/socket.py", line 669, in readinto
  18. return self._sock.recv_into(b)
  19. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/ssl.py", line 1241, in recv_into
  20. return self.read(nbytes, buffer)
  21. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/ssl.py", line 1099, in read
  22. return self._sslobj.read(len, buffer)
  23. socket.timeout: The read operation timed out
  24. During handling of the above exception, another exception occurred:
  25. Traceback (most recent call last):
  26. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/cli/base_command.py", line 167, in exc_logging_wrapper
  27. status = run_func(*args)
  28. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/cli/req_command.py", line 247, in wrapper
  29. return func(self, options, args)
  30. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/commands/install.py", line 369, in run
  31. requirement_set = resolver.resolve(
  32. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 92, in resolve
  33. result = self._result = resolver.resolve(
  34. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 481, in resolve
  35. state = resolution.resolve(requirements, max_rounds=max_rounds)
  36. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 348, in resolve
  37. self._add_to_criteria(self.state.criteria, r, parent=None)
  38. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 172, in _add_to_criteria
  39. if not criterion.candidates:
  40. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_vendor/resolvelib/structs.py", line 151, in __bool__
  41. return bool(self._sequence)
  42. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", line 155, in __bool__
  43. return any(self)
  44. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", line 143, in <genexpr>
  45. return (c for c in iterator if id(c) not in self._incompatible_ids)
  46. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", line 47, in _iter_built
  47. candidate = func()
  48. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/factory.py", line 206, in _make_candidate_from_link
  49. self._link_candidate_cache[link] = LinkCandidate(
  50. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 297, in __init__
  51. super().__init__(
  52. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 162, in __init__
  53. self.dist = self._prepare()
  54. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 231, in _prepare
  55. dist = self._prepare_distribution()
  56. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 308, in _prepare_distribution
  57. return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True)
  58. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/operations/prepare.py", line 438, in prepare_linked_requirement
  59. return self._prepare_linked_requirement(req, parallel_builds)
  60. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/operations/prepare.py", line 483, in _prepare_linked_requirement
  61. local_file = unpack_url(
  62. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/operations/prepare.py", line 165, in unpack_url
  63. file = get_http_url(
  64. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/operations/prepare.py", line 106, in get_http_url
  65. from_path, content_type = download(link, temp_dir.path)
  66. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/network/download.py", line 147, in __call__
  67. for chunk in chunks:
  68. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py", line 53, in _rich_progress_bar
  69. for chunk in iterable:
  70. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_internal/network/utils.py", line 63, in response_chunks
  71. for chunk in response.raw.stream(
  72. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py", line 573, in stream
  73. data = self.read(amt=amt, decode_content=decode_content)
  74. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py", line 538, in read
  75. raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  76. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/contextlib.py", line 131, in __exit__
  77. self.gen.throw(type, value, traceback)
  78. File "/work/home/acctrm9ew5/miniconda3/envs/pytorch_1.10/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py", line 440, in _error_catcher
  79. raise ReadTimeoutError(self._pool, None, "Read timed out.")
  80. pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

 解决方法:换一个源下载numpy。(我这里是在曙光平台上下载的,如果有小伙伴从这个源下载失败的话,可以再找个合适的源试试)

$ pip install numpy==1.20 -i https://pypi.douban.com/simple/

 

安装 nltk

pip install nltk

安装 torch 

从下边链接中选个合适的版本 

Previous PyTorch Versions | PyTorch

也可以从此链接中下载:

https://download.pytorch.org/whl/torch_stable.html

:我的cuda 是 10.1 ,选的torch 版本是1.5.0,所以命令行是:

pip install torch==1.5.0+cu101 torchvision==0.6.0+cu101 -f https://download.pytorch.org/whl/torch_stable.html

 安装 transformers

pip install  transformers

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/729642
推荐阅读
相关标签
  

闽ICP备14008679号