Version
1.63.0
Steps to reproduce
Bug Report: Playwright 1.63.0 Module Not Found on Windows (conda-forge)
Date: 2026-09-25
Environment: Windows 11, Python 3.13.15, conda-forge
Issue: ModuleNotFoundError: No module named 'playwright' despite successful conda installation
Summary
Playwright 1.63.0 installs successfully via conda-forge but fails to import in Python, causing ModuleNotFoundError. The package appears in conda list but the Python module is not discoverable.
Environment Details
OS: Windows 11
Python: 3.13.15 (conda-forge)
Conda Version: 24.x (current)
Channel: conda-forge (exclusive)
Playwright: 1.63.0 (h8fff0a6_1)
Build Package: playwright-1.63.0-h8fff0a6_1.conda
Reproduction Steps
-
Create conda environment with Python 3.13 and playwright from conda-forge:
conda create -n test_pw python=3.13 playwright -c conda-forge
-
Activate environment:
-
Attempt to import:
python -c "import playwright; print('✓ OK')"
Expected Result
Actual Result
Traceback (most recent call last):
File "<string>", line 1, in <module>
import playwright
^^^^^^^^^^^^^^^^^
ModuleNotFoundError: No module named 'playwright'
Verification
Package Installed:
conda list | grep playwright
# playwright 1.63.0 h8fff0a6_1 conda-forge
Package Contents Check:
ls "C:\ProgramData\Anaconda3\envs\topss_tools\Lib\site-packages" | findstr -i playwright
# (no results)
Hypothesis
The conda-forge build of playwright (1.63.0-h8fff0a6_1) on Windows appears to:
- Package the binary/compiled files correctly (installs without error)
- Fail to expose the Python module entry point
- Possibly missing
__init__.py or site-packages registration
Related Information
- Official Playwright Python: v1.63.0 (supports Python 3.8+)
- Official Installation: Works via
pip install playwright==1.63.0
- conda-forge Feedstock: playwright-feedstock
- Workaround: Using pip instead of conda resolves the issue immediately
Files
- Conda environment spec:
environment.yml (Python 3.13, playwright via conda-forge)
- Test location: Windows, C:\Users\PowerUser\Desktop\tosapps\00000_Projects_Catalog_Builder
Requested Action: Investigate Windows packaging in conda-forge playwright build 1.63.0-h8fff0a6_1
Expected behavior
The "conda install -c conda-forge playwright" should just work on all versions of Windows where current versions of Python v3 can be installed.
Actual behavior
See above...
Additional context
No response
Environment
- Operating System: [Ubuntu 22.04]
- CPU: [Intel x64]
- Browser: [All, Chromium, Firefox, WebKit]
- Python Version: [3.12 or later]
- Other info:
Version
1.63.0
Steps to reproduce
Bug Report: Playwright 1.63.0 Module Not Found on Windows (conda-forge)
Date: 2026-09-25
Environment: Windows 11, Python 3.13.15, conda-forge
Issue:
ModuleNotFoundError: No module named 'playwright'despite successful conda installationSummary
Playwright 1.63.0 installs successfully via conda-forge but fails to import in Python, causing
ModuleNotFoundError. The package appears inconda listbut the Python module is not discoverable.Environment Details
Reproduction Steps
Create conda environment with Python 3.13 and playwright from conda-forge:
Activate environment:
Attempt to import:
python -c "import playwright; print('✓ OK')"Expected Result
Actual Result
Verification
Package Installed:
Package Contents Check:
Hypothesis
The conda-forge build of playwright (1.63.0-h8fff0a6_1) on Windows appears to:
__init__.pyor site-packages registrationRelated Information
pip install playwright==1.63.0Files
environment.yml(Python 3.13, playwright via conda-forge)Requested Action: Investigate Windows packaging in conda-forge playwright build 1.63.0-h8fff0a6_1
Expected behavior
The "conda install -c conda-forge playwright" should just work on all versions of Windows where current versions of Python v3 can be installed.
Actual behavior
See above...
Additional context
No response
Environment