首页 技术 正文
技术 2022年11月14日
0 收藏 519 点赞 4,326 浏览 1308 个字
 # 首先从 Anaconda 官网下载 anaconda Linux 64Bit 版本命令行安装包
$ wget https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh # 修改权限让脚本可以运行
$ chmod +x Anaconda3-5.2.-Linux-x86_64.sh # 运行该安装脚本
$ ./Anaconda3-5.2.-Linux-x86_64.sh # 剩下就是一路Yes或者Enter好了... Welcome to Anaconda3 5.2. (by Continuum Analytics, Inc.) In order to continue the installation process, please review the license agreement. Please, press ENTER to continue
>>> # 重新加载一下 bash 就可以使用 `conda` 命令了
$ source ~/.bashrc #然后尝试一下运行 `conda -V` 命令行看是否已经安装成功,如果返回对应的版本信息,则说明安装成功。 $ conda -V
conda 4.2.13 一、更新 conda 命令:conda update -n base conda
二、安装 Scrapy 命令:conda install scrapy

2、遇到问题:tar (child): bzip2: Cannot exec: No such file or directory

tar (child): bzip2: Cannot exec: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now

—————————————

解决方法很简单,只要安装bzip2就行了,yum安装的命令如下:
yum -y install bzip2

参考网址:https://blog.csdn.net/mysteryflower/article/details/93064195

如果:centos7安装scrapy error: command ‘gcc’ failed with exit status 1   执行以下命令:

 yum install gcc libffi-devel python-devel openssl-devel

如果重装  Anaconda3 需要执行以下命令:

 出现问题:ERROR: File or directory already exists: /root/anaconda3 解决方案:删除即可 rm -rf   /root/anaconda3

参考网址:

1、https://rqalpha.readthedocs.io/zh_CN/latest/intro/detail_install.html

2、https://blog.csdn.net/ithongchou/article/details/83857346

3、https://blog.csdn.net/mysteryflower/article/details/93064195

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,088
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,565
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,413
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,186
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,822
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,905