Umut Palabiyik
Umut Palabiyik

Reputation: 323

I can't install pip module

When I try to install Selenium module with pip install selenium I get this error:

Fatal error in launcher: Unable to create process using '"c:\python39\python.exe"  "C:\Python39\Scripts\pip.exe" install selenium': The system cannot find the file specified.

Upvotes: 0

Views: 189

Answers (1)

hongkail
hongkail

Reputation: 789

Can you try the following?

$ python -m pip install selenium

Upvotes: 1

Related Questions