-
-
Notifications
You must be signed in to change notification settings - Fork 475
Download_CEF3_Linux
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.
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.
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.
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
-
wxpython.py - example of embedding using the wxPython GUI toolkit. Includes many tests of advanced features.
-
wxpython-response.py - example of reading/modifying all resource requests
- kivy_.py - example of embedding an off-screen rendered browser using the Kivy framework, see the screenshot
-
pygtk_.py - example of embedding using the PyGTK GUI toolkit
-
pyqt.py - example of embedding using the PyQt UI framework
- The distutils setup distribution and the debian package come with the cefpython3.wx module with more wxPython examples. See sample1.py, sample2.py, sample3.py.
- basic.py - example of off-screen rendering using the Panda3D game engine. See this topic on Panda3D Forums for more details.
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*