@@ -63,9 +63,15 @@ also download packages for offline installation available on the
6363[ GitHub Releases] ( ../../releases ) pages. Command to install with pip:
6464
6565```
66- pip install cefpython3==49.0
66+ pip --no-cache-dir install cefpython3==49.0
6767```
6868
69+ Please note that if you were previously installing cefpython3 package it
70+ is required to use the ` --no-cache-dir ` flag, otherwise pip will end up
71+ with error message ` No matching distribution found for cefpython3==49.0 ` .
72+ This happens because 49.0 release occured after 57.0 and 66.0 releases.
73+
74+
6975## Tutorial
7076
7177See the [ Tutorial.md] ( docs/Tutorial.md ) file.
@@ -108,7 +114,13 @@ OS | Py2 | Py3 | 32bit | 64bit | Requirements
108114--- | --- | --- | --- | --- | ---
109115Windows | 2.7 | 3.4 | Yes | Yes | Windows XP+
110116
111- - Install with command: ` pip install cefpython3==49.0 `
117+ - Install with command: ` pip --no-cache-dir install cefpython3==49.0 ` .
118+ - Please note that if you were previously installing cefpython3
119+ package it is required to use the ` --no-cache-dir ` flag,
120+ otherwise pip will end up with error message
121+ ` No matching distribution found for cefpython3==49.0 ` .
122+ This happens because 49.0 release occured after 57.0 and 66.0
123+ releases.
112124- Downloads are available on GitHub Releases tagged
113125 [ v49.0] ( ../../releases/tag/v49.0 ) .
114126- See [ Migration guide] ( docs/Migration-guide.md ) document for changes
0 commit comments