I did through other questions online here and I feel like my other is to guarantee a new question.
So, I have a Centos 6 box that runs a small website for me, acts as an office git server, and I'm trying to configure Python3 on it.
So, I followed these steps to configure Python3 on the server. However, it seems that I cannot import paramiko into my script.
I downloaded paramiko rpm, but I got this message:
When I try to import paramiko, I get:
[ root@GIT Python-3.4.2]
When I run python3 directly:
[ root@GIT inserv_health_check]# python3 Python 3.4.2 (default, Jan 21 2015, 06:28:04) [GCC 4.4.7 20120313 (Red Hat 4.4.7-11)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import paramiko Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named 'paramiko' >>>
I am sure there is a simple solution to this problem, maybe the path is wrong, or I should have placed a symbolic link somewhere. Any help would be appreciated :)
Before anyone asks what python output is:
[ root@GIT Python-3.4.2]
thanks
source share