FLock
Developer GuideGithub
  • What is FLock
    • Introduction to FLock.io
    • The Centralisation Problem
    • Architectural Breakdown
      • System Design
      • Blockchain Layer
      • AI Layer
  • ❤️‍🔥FLock Products
    • AI Arena
      • Participants
      • Quickstart
        • Pre-requisites
          • WSL installation
        • Delegator Guide
        • Training Node Guide
        • Validator Guide
      • Task Lifecycle Deep-dive
      • Smart Contracts Deep-dive
    • FL Alliance
      • Participants
      • Components
      • Task Lifecycle Deep-dive
        • 1. Staking and Role Assignment
        • 2. FL Training
        • 3. FL Aggregation and Evaluation
        • 4. Rewards
      • Smart Contracts Deep-dive
      • FL Client
        • Pre-Requsites
        • Steps to Quickstart
      • FLocKit
    • AI Marketplace
      • Quickstart
        • Getting started Manual creation
        • Guideline Manual
        • Model API guide
        • Tutorials
          • Create a discord bot with Model API
          • Farcaster Frames with Model API
      • Participants
      • Deep-dive
        • Function breakdown
        • RAG
        • Contribution Mechanism
        • Roadmap
    • 2025 Roadmap
  • 💰FLOCK TOKENOMICS
    • Overview
      • Incentivising open source model development
      • Security
    • Token Utility
      • Supply
      • Demand
    • Network Participation
      • AI Arena
        • Task Creator
        • Data Provider
        • Training Node
        • Validator
        • Delegator
        • Delegation Pool Rewards Explainer
      • FL Alliance
        • Task Creator
        • FL Nodes
      • AI Marketplace
        • Model Host
    • Token Allocations
    • Airdrop
    • Contract Details
  • 💻FLock Use-Cases
    • AI-assisted Coding - FLock x Aptos LLM (outperforms ChatGPT-4o!)
    • AI Assistants - Farcaster GPT, Scroll GPT and many more to come!
    • AI Companions - Professor Grump w/ Akash
    • Web3 Agents - Text2SQL Agent
    • Privacy-preserving Healthcare
  • 📃Resources
    • Litepaper
    • Whitepaper
    • Publications
    • Glossary
    • FAQ
    • Social Media
    • Careers
    • Terms Of Use
    • Privacy Policy
    • FLock.io-Verified Developers
    • FLOCK Token Airdrop Terms and Conditions
Powered by GitBook
On this page

Was this helpful?

  1. FLock Products
  2. AI Arena
  3. Quickstart
  4. Pre-requisites

WSL installation

PreviousPre-requisitesNextDelegator Guide

Last updated 11 months ago

Was this helpful?

To install Conda in WSL (Windows Subsystem for Linux), you can follow these steps:

Step 1: Install WSL and Set Up a Linux Distribution

You can find in Microsoft store

Step 2: Download and Install Miniconda or Anaconda

You can choose to install either Miniconda (a minimal installer for Conda) or Anaconda (a larger distribution including many scientific packages).

Install Anaconda

  1. Open your WSL terminal.

  2. Download the Anaconda installer script using wget or curl:

    wget https://repo.anaconda.com/archive/Anaconda3-latest-Linux-x86_64.sh
  3. Run the installer script:

    bash Anaconda3-latest-Linux-x86_64.sh
  4. Follow the prompts during the installation. Accept the license agreement, specify the installation path (default is usually fine), and choose whether to initialize Anaconda.

  5. Initialize Conda (if not done during installation):

    source ~/anaconda3/bin/activate
  6. Update Conda to the latest version:

    conda update conda

Step 3: Verify Installation

  1. Close and reopen your WSL terminal or run the following command to activate Conda:

    source ~/.bashrc
  2. Verify that Conda is installed and working correctly:

    conda --version

You should see the Conda version printed in the terminal, indicating that Conda has been successfully installed.

By following these steps, you will have Conda installed and ready to use in your WSL environment.

❤️‍🔥
Ubunto(WSL)