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

Update setup.sh #9

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion scripting_tools/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,15 @@ else
exit 1
fi

# Create a symlink for the azzy-cli command globally
echo -e "${YELLOW}Creating global symlink for azzy-cli...${NC}"
sudo ln -sf /home/arsalan/repositories/azzy-cli/azzy_cli.py /usr/local/bin/azzy-cli

# Notify the user that the setup process is complete
echo -e "${GREEN}Setup complete. Virtual environment is ready to use.${NC}"
echo -e "${GREEN}To activate the virtual environment manually, run:${NC}"
echo -e "${GREEN}source $VENV_DIR/bin/activate${NC}"

# Instruction to run the main azzy-cli.py script
echo -e "${GREEN}You can now run the CLI with:${NC}"
echo -e "${GREEN}python3 ../azzy-cli/azzy_cli.py --help${NC}"
echo -e "${GREEN}azzy-cli --help${NC}"