安装RsaCtfTool问题

安装RsaCtfTool遇到的问题

1.没有安装mpfr和mpc

1
2
3
错误
fatal error: mpfr.h
fatal error: mpc.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
解决
ftp://ftp.gnu.org/gnu/mpfr
tar mpfr-v.tar.gz
cd mpfr-v
./configure
make
make check
make install

ftp://gcc.gnu.org/pub/gcc/infrastructure
tar -xzvf mpc-v.tar.gz
cd mpc-1.0.3
./configure
make
make check
make install

安装配置mpfr和mpc

2.网络

1
2
3
4
5
错误
Could not find a version that satisfies the requirement skimage (from versions: )
Collecting distribute
Exception:
Traceback (most recent call last):

1
2
解决
pip install -r requirements.txt -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

换豆瓣的镜像源