由于在ubuntu环境下,将python做与python3.6做了软链接(ln -s python python3.6),并且pip也被我做了软链接,所以导致用pip安装virtualenvwrapper之后,在source启动virtualenvwrapper.sh时以及workon 虚拟环境时总是报错: ./virtualenvwrapper.sh: line : : command not found virtualenvwrapper.sh: There was a problem ru…
在Ubuntu下安装完virtualenv.virtualenvwrapper,然后设置环境文件 .bashrc 接着 source .bashrc,产生错误信息 首先确认了 libpam-mount 等模块已经在系统安装了.查看后面的信息应该是文件配置路径有问题. 检查virtualenvwrapper.sh的信息 因为虚拟机目前只装了python3.6,所以先将此处改成python3 保存文件,再执行 source .bashrc,报错消失.…
Linux(ubuntu)上python2与python3共存环境下,安装virtualenvwrapper后, 其环境变量被自动设置为VIRTUALENVWRAPPER_PYTHON=/usr/bin/python 该地址指向Python2的解释器,现在更改成Python3就可以了,具体操作如下: # 修改环境变量,重新载入 vim ~/.bashrc 在.bashrc文件中,删除原先的virtualenvwrapper配置,并追加以下内容 if [ -f /usr/local/bin/vir…
第二个节点运行root.sh报错如下 Entries will be added to the /etc/oratab file as needed by Database Configuration Assistant when a database is created Finished running generic part of root script. Now product-specific root actions will be performed. Using configu…
参考的网址: http://blog.csdn.net/jcjc918/article/details/39032689 错误现象: 执行 buildconf.sh 报错,无法生成configure文件 报错的代码 automake: warnings are treated as errors /usr/share/automake-1.13/am/library.am: warning: 'libstemmer.a': linking libraries using a non-POSIX…
windows中修改catalina.sh上传到linux执行报错This file is needed to run this program解决 一.发现问题 由于tomcat内存溢出,在windows下修改了catalina.sh,然后通过ssh传到linux服务器上,执行catalina.sh时出现如下错误: Cannot find ./catalina.sh This file is needed to run this program 二.尝试解决 使用sh catalina.sh命…
今天重装了win10系统,开始安装各种软件,装到node的时候我崩溃了,报错there is a problem in the windows installer package··· 度娘了各种安装方法一直不成功,大哭.最后,终于看到了一位网友说他安装python,报错和我这个一样,我抱着试一试的心态用了他的方法,果然成功了,比心!下面post出我成功安装node的方法. 1. 在开始面板找到命令提示符,右键选择“以管理员身份运行” 2. 进入到安装包的文件目录内 3. 回到命令提示符窗口,运…
单独在linux 7中为ohasd设置一个服务.步骤如下1. 创建服务ohas.service的服务文件并赋予权限touch /usr/lib/systemd/system/ohas.servicechmod 777 /usr/lib/systemd/system/ohas.service 2. 往ohas.service服务文件添加启动ohasd的相关信息 vi /usr/lib/systemd/system/ohas.service[Unit]Description=Oracle High…
Linux安装Redis 6.0.5 ./install_server.sh报错 linux 安装Redis6.0.5时 进行到./install_server.sh时报错, This systems seems to use systemd. Please take a look at the provided example service unit files in this directory, and adapt and install them. Sorry! 解决方案: vi ./…
第一次使用Git工具克隆仓库,使用的是HTTPS链接,失败了.发现是因为通过HTTPS访问时,如果服务器上的SSL证书未经过第三方机构认证,Git就会报错. 解决方法:通过命令关闭验证 git config --global http.sslverify false 参考: git中的SSL certificate problem: unable to get local issuer certificate错误的解决办法 - Jaxu - 博客园 (cnblogs.com) 使用Git克隆项目…