File: virtualenv.md

package info (click to toggle)
python-pywebview 2.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,376 kB
  • sloc: python: 3,816; cs: 116; makefile: 3
file content (8 lines) | stat: -rw-r--r-- 475 bytes parent folder | download
1
2
3
4
5
6
7
8
# Virtual environment

If you create a virtual environment using the built-in Python on macOS, a pywebview window will have issues  with keyboard focus and Cmd+Tab. The issue can be avoided by using other Python installation as described [here](https://virtualenv.pypa.io/en/stable/userguide/#using-virtualenv-without-bin-python). For example, Python 3 installed via Homebrew](https://brew.sh) does not 

``` bash
brew install python3
virtualenv pywebview_env -p python3
```