Invalid requirement: '–r'Traceback (most recent call last): File "/home/dev/.pyenv/versions/3.6.1/envs/env361/lib/python3.6/site-packages/pip/_vendor/packaging/requirements.py", line 92, in __init__ req = REQUIREMENT.parseString(requirement_stri…
生成文件 pip freeze > requirements.txt pip install --help Usage: pip install [options] <requirement specifier> [package-index-options] ... pip install [options] -r <requirements file> [package-index-options] ... pip install [options] [-e] <v…
执行apt-get install fcitx时,报如下错误 grub-pc E: Sub-process /usr/bin/dpkg returned an error code (1) 通过执行下面的命令可以解决该问题: sudo mv /var/lib/dpkg/info/ /var/lib/dpkg/info_old/ sudo mkdir /var/lib/dpkg/info/ sudo apt-get update sudo apt-get upgrade sudo apt-inst…
在pip.log中出现sh: 1: mysql_config: not found等一坨报错,因为没有安装另一个包: 只要原因是没有安装:libmysqlclient-dev sudo apt-get install libmysqlclient-dev sudo updatedb 这样再pip就可以了. 如果需要找mysql_config文件的路径 locate mysql_config mysql_config的位置为:/usr/bin/mysql_config 感谢原文:http://ww…
一直尝试在python3中安装pandas等一系列软件,但每次执行pip3 install pandas后就卡住不动了,一直停在那,开始以为是pip命令的版本不对,还执行过 python -m pip3 install -U pip3 升级命令,发现还是不行.有了上一篇python2中安装的经验可知肯定是numpy的版本不对,查看 /usr/lib/python3/dist-packages 目录下查看发现确实是1.8的版本,而从python2中的经验可知应该至少得1.9.0以上的版本. 1.…
linux上安装完torch后仍报错: Traceback (most recent call last): File , in <module> import torch ImportError: No module named torch 是因为还要进行环境配置: 首先进入: vim ~/.bashrc 添加下面的语句: . /home/yourdirectory/torch/install/bin/torch-activate # added by Anaconda3 installer…
D:\git\**\src\main\iui>ng build --prod --aotHash: 257ab60feca43633b6f7Time: 25358mschunk {0} polyfills.221420fde500aaed5079.bundle.js (polyfills) 184 kB {5} [initial] [rendered]chunk {1} scripts.92391f7b3a5602225e85.bundle.js (scripts) 185 kB {5} [in…
在Linux上配置xampp后远程访问域名报错: New XAMPP security concept: Access to the requested object is only available from the local network. This setting can be configured in the file "httpd-xampp.conf". 初步分析了一下错误原因是:安全异常,需要修改httpd-xampp.conf.这个文件在:/opt/lampp/…
TFDStoredProc执行sql server的部分存储过程报错,有的是好的. Invalid character value for cast specification 暂时无解.用fdquery执行存储过程exec pp,p1,p2是好的不报错. 时间紧张先这样吧. find reason: TFDStoredProc执行存储过程,当结果集更换了列,第一次返回10个列,第二次返回20个列就报这样的错误了. delphi和c++builder都出现这样的问题. 待日后再插原因 2019.…