Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ModuleNotFoundError: No module named 'Schedule" #198994

Open
4 tasks done
Cerberus1810 opened this issue Nov 25, 2024 · 1 comment
Open
4 tasks done

ModuleNotFoundError: No module named 'Schedule" #198994

Cerberus1810 opened this issue Nov 25, 2024 · 1 comment
Labels
question Issue asks a question but is likely not a bug

Comments

@Cerberus1810
Copy link

brew gist-logs <formula> link OR brew config AND brew doctor output

schedule missing from python3 pip
pip3 unable to install or upgrade using python3 -m pip install --upgrade pip

Verification

  • My brew doctor output says Your system is ready to brew. and am still able to reproduce my issue.
  • I ran brew update and am still able to reproduce my issue.
  • I have resolved all warnings from brew doctor and that did not fix my problem.
  • I searched for recent similar issues at https://github.com/Homebrew/homebrew-core/issues?q=is%3Aissue and found no duplicates.

What were you trying to do (and why)?

writing python script

What happened (include all command output)?

module 'schedule' missing

What did you expect to happen?

download missing module and compile code

Step-by-step reproduction instructions (by running brew commands)

brew install schedule
brew reinstall python3
brew install pip3
brew install pipx
python3 -m pip install --upgrade pip
@Cerberus1810 Cerberus1810 added the bug Reproducible Homebrew/homebrew-core bug label Nov 25, 2024
@Cerberus1810 Cerberus1810 changed the title missing module ModuleNotFoundError: No module named 'Schedule" Nov 25, 2024
@branchvincent
Copy link
Member

Since schedule is a Python library, our policy (which pip will inform you about when trying to install packages) is for you to use a virtual environment. For example:

$ python3 -m venv .venv
$ .venv/bin/pip install schedule
$ .venv/bin/python -c 'import schedule'

@branchvincent branchvincent added question Issue asks a question but is likely not a bug and removed bug Reproducible Homebrew/homebrew-core bug labels Nov 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Issue asks a question but is likely not a bug
Projects
None yet
Development

No branches or pull requests

2 participants