(install pclpy) pclpy+windows+anaconda

The pclpy-0.12.0 version supports python3.6 and 3.7 versions of windows, but pclpy-0.12.0 removes the visualization module, that is, the point cloud effect cannot be seen. Installation method: enter the virtual environment corresponding to the python version, and then enter:

pip install pclpy==0.12.0 -i http://pypi.douban.com/simple

The pclpy-0.11.0 version only supports the python3.6 version of windows, but has a visualization module. The installation method: enter the virtual environment of the python3.6 version, and then enter:

pip install pclpy==0.11.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

Note: If the installation is unsuccessful and an error is reported, you can enter the same command to continue trying because the network is unstable. You can try the following images:

pip install installation package name==version number -i http://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com //Douban mirror website

pip install installation package name==version number -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com //豆瓣

pip install installation package name==version number -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tuna.tsinghua.edu.cn //Tsinghua University

There are also the following domestic pip sources, you can try the above methods in turn

1) http://mirrors.aliyun.com/pypi/simple/ Alibaba Cloud
2) https://pypi.mirrors.ustc.edu.cn/simple/ University of Science and Technology of China
3) http://pypi.mirrors.ustc .edu.cn/simple/ University of Science and Technology of China

Guess you like

Origin blog.csdn.net/xsh_roy/article/details/122224411