我一直试图在Windows上安装 paramiko 模块但没有成功。我一直在收到与Visual C ++编译器相关的错误。是否可以安装 paramiko 而无需经过编译过程。
答案 0 :(得分:0)
根据this question的方法,这是我的建议(假设你已经安装了> = python-2.7.9,如果没有,升级,2.7.9附带pip,前2.7.9没有按' T):
pip install pycrypto-stuff.whl
(在您保存pycrypto whl文件的目录中的命令提示符窗口中)。pip install paramiko
(在命令提示符下,但可以在您喜欢的w / e文件夹中)。这应该可以解决问题。通常,简单的pip install package_name
可以工作,但pycrypto
不提供轮文件(二进制包),因此您必须构建它。根据它的声音你没有安装Visual C ++(或者没有正确的版本,它只适用于一个,我不记得哪个),pycrypto
需要一个内置的扩展包使用系统加密库,这就是源包不起作用的原因。
答案 1 :(得分:0)
我可以通过使用 pip 安装以下软件包来使其正常工作。
import React from 'react';
import SwiperCore, { Navigation, Pagination, } from 'swiper';
import { Swiper, SwiperSlide } from 'swiper/react';
import 'swiper/swiper.scss';
import 'swiper/components/navigation/navigation.scss';
import 'swiper/components/pagination/pagination.scss';
export default class SlideShow extends React.Component {
render() {
SwiperCore.use([Navigation, Pagination,]);
return (
<Swiper
spaceBetween={10}
slidesPerView={1}
navigation
pagination={{ clickable: true }}
>
<SwiperSlide><img alt={"alt text here"} src={image1}/></SwiperSlide>
<SwiperSlide><img alt={"alt text here"} src={image2}/></SwiperSlide>
<SwiperSlide><img alt={"alt text here"} src={image3}/></SwiperSlide>
</Swiper>
);
}
}
这些是我在 Linux 安装时用作先决条件的软件包,因此它们应该也适用于 Windows。