Chilkat Python Module for Linux Install Instructions
Python Examples: Chilkat Python Examples
1. Download
Download the binary distribution and unpack to any directory. The download contains the following files:
_chilkat.so chilkat.py license.txt installChilkat.py testChilkat.py Linux (This is an empty file. The download is for this operating system.) x86_64 (or i686, an empty file. The download is for this processor architecture.) 2.7 (or 3.0, 3.1, etc. This is an empty file. The download is for this version of Python.)
To unpack use "tar xzf". For example:
tar xzf chilkat-9.5.0-python-2.7-x86_64-linux.tar.gz
2. Install to Local Site-Packages
Run the installChilkat.py script to copy the _chilkat.so and chilkat.py files to the site-packages directory.
# For Python 2.7 python installChilkat.py # For Python 3.* python3 installChilkat.py
Did you get this error? AttributeError: module 'site' has no attribute 'getusersitepackages'
This can happen in a virtualenv because site.py does not have getusersitepackages().
Download and use this install script instead: installchilkat_virtenv.zip
Contact support@chilkatsoft.com if this virtualenv install script does not work.
3. Alternatively Install to Global Site-Packages
Alternatively, to install to the global site-packages, use the -g option:
# For Python 2.7 sudo python installChilkat.py -g # For Python 3.* sudo python3 installChilkat.py -g
Did you get this error? AttributeError: module 'site' has no attribute 'getsitepackages'
This can happen in a virtualenv because site.py does not have getusersitepackages().
Download and use this install script instead: installchilkat_virtenv.zip
Contact support@chilkatsoft.com if this virtualenv install script does not work.
4. Test
Run the testChilkat.py script to verify.
python testChilkat.py # or python3 testChilkat.py
The testChilkat.py contains the following Python code. It instantiates a few Chilkat objects and prints the Chilkat version.
import chilkat # Create some Chilkat objects and print the versions zip = chilkat.CkZip() print("Zip: " + zip.version()) imap = chilkat.CkImap() print("IMAP: " + imap.version()) ftp = chilkat.CkFtp2() print("FTP: " + ftp.version()) mailman = chilkat.CkMailMan() print("POP3/SMTP: " + mailman.version()) ssh = chilkat.CkSsh() print("SSH: " + ssh.version()) sftp = chilkat.CkSFtp() print("SFTP: " + sftp.version()) rsa = chilkat.CkRsa() print("RSA: " + rsa.version()) http = chilkat.CkHttp() print("RSA: " + http.version()) crypt = chilkat.CkCrypt2() print("Crypt: " + crypt.version()) xml = chilkat.CkXml() print("XML: " + xml.version()) sock = chilkat.CkSocket() print("Socket/SSL/TLS: " + sock.version()) tar = chilkat.CkTar() print("TAR: " + tar.version())