Python Forum
Difficulty installing Pycrypto
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Difficulty installing Pycrypto
#5
Quick test i get no error on import,as most of the time when i test stuff that can have problem virtual environment.
Then is isolated of all i done an installed before.
E:\div_code
λ python -m venv pysftp_env

E:\div_code
λ cd pysftp_env\

E:\div_code\pysftp_env
λ E:\div_code\pysftp_env\Scripts\activate

(pysftp_env) E:\div_code\pysftp_env
λ pip install pysftp
Collecting pysftp .....  
Successfully installed bcrypt-3.1.7 cffi-1.14.0 cryptography-2.8 paramiko-2.7.1 pycparser-2.19 pynacl-1.3.0 pys
ftp-0.2.9 six-1.14.0

(pysftp_env) E:\div_code\pysftp_env
λ python
Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 21:26:53) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pysftp
>>>
>>> pysftp.__version__
'0.2.9'
>>> exit()
Test connect:
(pysftp_env) E:\div_code\pysftp_env
λ python
Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 21:26:53) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pysftp
>>>
>>> cnopts = pysftp.CnOpts()
>>> cnopts.hostkeys = None
>>> con =  pysftp.Connection('198.18.8.139', username='tester', password='password', cnopts=cnopts)
>>> con.listdir()
['testfile.txt']
>>> con.get('testfile.txt')
>>> exit()

(pysftp_env) E:\div_code\pysftp_env
λ cat testfile.txt
This is a test file created by Rebex Tiny SFTP server.
Reply


Messages In This Thread
Difficulty installing Pycrypto - by KipCarter - Feb-10-2020, 01:22 PM
RE: Difficulty installing Pycrypto - by buran - Feb-10-2020, 03:07 PM
RE: Difficulty installing Pycrypto - by KipCarter - Feb-10-2020, 03:27 PM
RE: Difficulty installing Pycrypto - by buran - Feb-10-2020, 03:30 PM
RE: Difficulty installing Pycrypto - by snippsat - Feb-10-2020, 07:54 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Difficulty in adapting duplicates-filter in script ledgreve 5 998 Jul-17-2023, 03:46 PM
Last Post: ledgreve
  Difficulty with installation standenman 2 1,063 May-03-2023, 06:39 PM
Last Post: snippsat
  Difficulty with installation standenman 0 695 May-02-2023, 08:33 PM
Last Post: standenman
  Difficulty in understanding transpose with a tuple of axis numbers in 3-D new_to_python 0 1,576 Feb-11-2020, 06:03 AM
Last Post: new_to_python
  Python cryptography or pycrypto lexlukkia 4 63,181 Jan-25-2017, 12:08 PM
Last Post: wavic

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020