# prompt: create a bash script that check if a single argument was given and install this conda packages: python scikit-learn keras pandas numpy matplotlib tensorflow openpyxl enlighten
# if the user dont input any argument or more than 1 print a help to use the script
#!/bin/bash
if[$# -ne 1];then
echo"Usage: $0 <environment_name>"
echo""
echo" Installs conda packages for a specified environment."