Featurepreneur
  • Featurepreneur
  • Learning challenge and battle
  • Installation guide for Freshers
  • FAQ - ML Enthusiasts
  • Featurepreneur vs Entrepreneur
  • How to publish a feature at Featurepreneur?
  • FAQ - Employers
  • Featurepreneur Benefits
  • Intern Graduation Criteria
  • Tact Coins
  • Spin Time - Winners
  • Spin Time - Title Nominations
  • Featurepreneur of the Week
  • Junior-Featurepreneur of the week
  • Writer of the week
  • Learner of the Week
  • Mentor of the Week
  • Meme Developer of the week
  • Learning Team of the Week
  • Tool Researcher of the Week
  • Intern of the week
  • Learning Challenge Tournament
  • Featurethon - Season 1
  • Featurethon Season 2
  • Scapanza
  • Featurepreneur Kickout Rule
  • Error Bee of the Week
  • Game: TactSay
  • TactSay Winners
  • Crossword Solver of the Week
  • Secret Admirers
  • Game Coins
  • Training Program (ML & MaaMs)
  • Mentor
  • Junior Mentor
  • FPR Royalty
  • Netflix Shift
  • Mission TactCommerce 007
  • Public Feature Requirements
  • Public Feature Requirements - II
  • Public Feature Requirements III
  • Public Feature Requirements IV
  • Public Feature Requirements V
  • Public Feature Requirements Jr
  • Newbie Feature Requirements
  • Research Requirements
  • Mission99
  • Mission F25
  • EduMemeTech
  • Vlad and CSP Education Fund
  • Gaming Requirements
  • IMLF
  • Badges
  • GLS
  • Top 8 Wish List
  • Linux Evangelism
  • Flask Requirements
  • AWS Requiements
  • Docker Requirements
  • CircleCI Requirements
  • Kubernetes Requirements
  • Ubuntu Installation Issues
  • Javascript Best Resources
  • AWS Lambda Requirements
  • AWS Beanstalk Requirements
  • AWS ECS Requirements
  • Starbuck Fund
  • PM2 Requirements
  • Shadow Articles
  • 5$ Challenge
  • Game: Pronounce Bee
  • Universities with Advanced Research options
  • Online Resumes/Profiles
  • Prime Numbers
  • Open Source Projects
  • Various Audio Research and Work
  • NLP Repositories
  • ML Interview Questions
  • ML Interview Questions (In house collection)
  • ML Interview Questions - Gamified version
  • ML/DL Repositories / Libraries
  • Tact Effects
  • EdWish
  • SWIFT
  • CrowdEngine
  • ML Time
  • Bootcamp - Python Dev
  • Bootcamp - MLOps
  • Bootcamp - ML Engineering 101
  • Bootcamp Projects
  • Python 101
  • ML 101
  • Fun with Python
  • Python Advanced with AWS
  • Featurepreneur YouTube
  • AMA Sessions
    • S1 : AMA with Jatin
    • S2 : AMA with Muthu Revanth
  • Trivia Time
  • Random Fun Exam
  • Bed with Numpy
  • PyTorch Interview Questions
  • Brain Storming
  • Equality Essay Contest
  • Eat Sleep Code Contest
  • AWS Scholarship
  • Tact Lingo
  • Workshop Add-ons
  • Modularization
  • Article Request
  • Smalltics
  • MoU
  • SEAD
  • You run the world, Girl!
  • Reading Club
  • AWS Certification Training
  • NGO Coding
  • Effort Levels
  • AWS Certifications
  • Azure Certifications
  • Job Shadowing as a Certificate (JSaaC)
  • Statistics Topics
  • Topic Researcher
  • Privacy
  • Terms and Conditions
  • MongoDB Certification
  • Tact Tech Component (TTC)
  • Zero Slides Policy
  • Random Challenge
  • YT Download Notes
  • Featurepreneur SWAGS
  • IT Lingo
  • My Book Visual
  • Features History
  • Tool of the week
  • Research of the week
  • Bootcamp Analyzer
  • Random ML Feeds
  • Conda Installation History
  • Bootcamp Intro Session Topics
  • Skills Test
  • Commonality Test
  • Tact Pronunciation Test
  • Tact Intern
  • Leadership Training
  • Project SICAdian 772
  • EiBE
  • Tact AWS Scholarship
  • Chat Movie/TVShow Lines
  • Typing Test
  • Regular Events
  • ZUFÄRIELLE
  • Fivonacci
  • Ubuntu Kid
  • Rapid Duck
  • FPR Dev FAQ
  • ML Tools
  • Hidden Stocks
  • Real-Time Data Scenarios
    • Learning Challenge
Powered by GitBook
On this page

Was this helpful?

Installation guide for Freshers

A guide to help you through the basic installation for ubuntu!

Brave installation:

sudo snap install brave

Joplin installation:

sudo apt update
sudo apt install snapd
sudo snap install joplin-desktop

Docker:

sudo apt install docker.io

Type in the following to verify if docker has been installed:

sudo docker

Postman:

sudo snap install postman

Apt installation:

sudo apt update
sudo apt install snapd

Install Visual Studio Code:

sudo snap install --classic code

Install zoom:

sudo snap install zoom-client

Install slack:

sudo snap install slack --classic

Install git:

sudo apt install git

Add ssh:

ssh-keygen -t rsa -b 4096 -C "youremail@gmail.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
cat ~/.ssh/id_rsa.pub

Once you're done with the above commands, copy the SSH key generated and add it in GitHub.

To do so, go to settings on GitHub, then you will find SSH and GPG keys on the left hand side panel. Go into it and add in the SSH key generated and name it.

Mini conda installation:

cd /tmp
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod +x Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh

Once you're done with the above steps, close the terminal and open it again. Then type in the following command:

conda config --set auto_activate_base false

To create a new environment, follow the command below:

conda create -n py38 -y python=3.8

To activate and deactivate the environment, type in the commands below:

conda activate py38
conda deactivate
PreviousLearning challenge and battleNextFAQ - ML Enthusiasts

Last updated 3 years ago

Was this helpful?