Hey. I am trying to write the simplest bash script for my application so that all dependencies are installed in one command. But nothing happens, errors occur:
] is not understood in combination with the other options. and
Collecting pip3 Could not find a version that satisfies the requirement pip3 (from versions: ) No matching distribution found for pip3 The bash script code itself:
apt install python3 -y apt install python3-pip -y apt install git -y pip3 install --upgrade pip3 pip3 install requests netaddr pip3 install --upgrade requests Why do these errors occur and what are they connected with?
#!/bin/sh, but exactlyapt, notapt-get? - 0andriyapt- JamesJGoodwin