I'm installing as follows: ``` python3 -m venv venv source venv/bin/activate pip install tensorflow-cpu==2.4.1 pip install tensorflow-text ``` But the last install also installs `tensorflow<2.5,>=2.4.0`, which I don't want. How can I stick to the CPU version?
I'm installing as follows:
But the last install also installs
tensorflow<2.5,>=2.4.0, which I don't want. How can I stick to the CPU version?