Skip to content

Download_CEF3_Linux

cztomczak edited this page May 25, 2016 · 5 revisions

Download CEF Python 3 for Linux

Introduction

The binaries were built by following the instructions on the BuildOnLinux wiki page.
Linux release is sponsored by Cyan Inc.

Version information
The latest version is 31.2 (stable), released on January 10, 2015.
The Chrome version is 31.0.1650.69. Based on CEF 3 branch 1650 rev. 1639.
For an explanation of these numbers see the VersionNumbering wiki page.

Release notes
For a list of changes in current and past binary distributions see
the ReleaseNotes wiki page.

Downloads

There are two distributions available for linux: a Debian package and a Distutils Setup. Both 32-bit and 64-bit platforms are supported. Only Python 2.7 downloads are available. Python 3.4 is not yet supported, see Issue 121.

Download from Google Drive.

Download from Dropbox.

Install location on Ubuntu

Debian package installs to:

/usr/share/pyshared/cefpython3/
/usr/lib/pymodules/python2.7/cefpython3/ (symbolic links to /usr/share/pyshared/cefpthon3/)

Distutils package installs to:

/usr/local/lib/python2.7/dist-packages/cefpython3/

Note that if you've installed both the Debian package and the Distutils package, then the Distutils package will take precedence when importing the cefpython3 module.

Examples

Go to examples/ directory that is inside cefpython3/ package. For location of this directory see the previous section "Install location on Ubuntu".

It is recommended to run the wxpython.py example which presents the most features. To install wx toolkit type:

sudo apt-get install python-wxtools

Uninstall

To uninstall the Debian package type:

sudo apt-get remove python-cefpython3

To uninstall the Distutils package type:

sudo rm -rf /usr/local/lib/python2.7/dist-packages/cefpython3*