Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wynwxst/repl-apt.guide
how to use apt in repl.it
https://github.com/wynwxst/repl-apt.guide
Last synced: 20 days ago
JSON representation
how to use apt in repl.it
- Host: GitHub
- URL: https://github.com/wynwxst/repl-apt.guide
- Owner: wynwxst
- Created: 2021-02-18T04:10:23.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-18T04:13:09.000Z (almost 4 years ago)
- Last Synced: 2024-11-13T04:33:55.398Z (3 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# repl-apt.guide
how to use apt in repl.it# Steps
```
apt install nano #example
#since repl.it blocks apt
go to https://pkgs.org
wget https://link.to/nano/.deb/
dpkg -e nano.deb
cd usr/bin/
chmod +x nano
nano
nano --help
```# A pretty bad way of installing apt packages on repl.it
kinda the only way tho