AXELA CAPITAL
Axela Capital is a global venture capital firm that invests in startups led by visionary entrepreneurs. We invest in entrepreneurs that are creating innovative solutions to real problems particularly in the fields of mobile, internet, artificial intelligence, healthcare, transportation, agriculture, biotechnology and many more.
AXELA CAPITAL
Industry:
Artificial Intelligence (AI) Finance Financial Services FinTech Venture Capital
Founded:
2014-08-27
Website Url:
http://www.axelacapital.com
Total Employee:
1+
Status:
Active
Email Addresses:
[email protected]
Technology used in webpage:
IPhone / Mobile Compatible Viewport Meta Content Delivery Network JsDelivr OSS CDN
Similar Organizations
AllMobile Fund
AllMobile Fund is a venture capital firm that invests in startups that use artificial intelligence to grow into business intelligence.
Appreciate Capital
Appreciate Capital is a venture capital fund investing in the earliest (pre-seed, seed) stages of world-positive, gender smart companies.
![]()
Hack VC
Hack VC is an early-stage venture capital firm that invests in the cryptocurrency, fintech, and marketplaces sectors.
Raisehub
Raisehub is a collective investment HUB that promotes the development of startups through online investments, connecting entrepreneurs.
Ribbit Capital
Ribbit Capital is a venture capital firm that invests in early-stage companies.
Superdigital
Superdigital is a digital account and prepaid card that provides services for paying bills, making payments, and recharging cell phones.
![]()
Thundermark Capital
Thundermark Capital is a venture capital firm that invests in deep tech startups
UNLEASH Capital Partners
UNLEASH Capital Partners is an early-stage venture capital fund committed to supporting visionary entrepreneurs.
Founder

Official Site Inspections
http://www.axelacapital.com
- Host name: 19.133.96.66.static.eigbox.net
- IP address: 66.96.133.19
- Location: Burlington United States
- Latitude: 42.509
- Longitude: -71.1984
- Metro Code: 506
- Timezone: America/New_York
- Postal: 01803

More informations about "Axela Capital"
How can I install a package with go get? - Stack Overflow
May 18, 2015 When go get checks out or updates a Git repository, it also updates any git submodules referenced by the repository. Get never checks out or updates code stored in โฆSee details»
get package - cmd/go/internal/get - Go Packages
Aug 6, 2024 View Source var CmdGet = & base. Command { UsageLine: "go get [-d] [-f] [-t] [-u] [-v] [-fix] [build flags] [packages]", Short: "download and install packages and dependencies", โฆSee details»
How to Install a package with GO get? - GeeksforGeeks
Jul 23, 2025 In the Go language, we can use the go get command to download and install the packages and dependencies. Various repositories have the support to go get like Azure Repos โฆSee details»
Understanding the 'go get' Command (with examples)
Dec 17, 2024 The go get command is a versatile and powerful tool for managing dependencies within Go projects. Whether you need to quickly add new functionalities, ensure compatibility โฆSee details»
A Beginnerโs Guide to Installing Go Packages with go get โ โฆ
Nov 12, 2023 As a new Go programmer, one of the first things youโll need to do is install packages to add functionality beyond the standard library. Fortunately, Go makes this easy for โฆSee details»
A Comprehensive Guide to Installing Packages Using Go Get
Feb 19, 2025 The go get command is an essential tool in the Go ecosystem, providing a streamlined process for managing dependencies. By following this guide, you now have a โฆSee details»
go-get man | Linux Command Library
The go get command is a crucial subcommand of the Go programming language toolchain, responsible for downloading and managing Go packages and modules. Its primary function is โฆSee details»
"go get" command · golang-101-hacks
"go get" command " go get " command is the standard way of downloading and installing packages and related dependencies, and let's check the particulars of it through an example: โฆSee details»
What is the purpose of the โgo getโ command in Go?
The go get command in Go is a powerful tool used to fetch, build, and install packages and dependencies from remote repositories into your local Go workspace. It is a fundamental โฆSee details»
Go Tutorial => Go Get
If no such version exists it retrieves the most recent version of the package. When using go get, the -d flag causes it to download but not install the given package. The -u flag will allow it to โฆSee details»
go command - cmd/go - Go Packages
Nov 5, 2025 Go is a tool for managing Go source code. Usage: go <command> [arguments] The commands are: bug start a bug report build compile packages and dependencies clean โฆSee details»
How do I import a specific version of a package using go get?
3 go get is the Go package manager. It works in a completely decentralized way and how package discovery still possible without a central package hosting repository. Besides locating โฆSee details»
Go Modules Reference - The Go Programming Language
The go get command updates module dependencies in the go.mod file for the main module, then builds and installs packages listed on the command line. The first step is to determine which โฆSee details»
What is the difference between go get and go install?
Jul 22, 2014 After playing with the go tool for a while, it looks like go get: (optionally) downloads, compiles, and installs a piece of software, while go install simply compiles and installs it. In this โฆSee details»
Deprecation of 'go get' for installing executables
Overview Starting in Go 1.17, installing executables with go get is deprecated. go install may be used instead. In Go 1.18, go get will no longer build packages; it will only be used to add, โฆSee details»
go get vs go install on go.sum file - Stack Overflow
Jul 4, 2023 5 go get vs go install The go get and go install commands in Go serve different purposes: go get is used to retrieve and download packages and their dependencies from โฆSee details»
What is 'go get' command in Go (Golang)
May 23, 2023 Learn about the 'go get' command in Go, used to download external packages and manage dependencies. Syntax, examples, and best practicesSee details»
What is the difference between `go get ...` and `go get -u ...`?
Mar 22, 2021 An interesting quote from the modules wiki: A common mistake is thinking go get -u foo solely gets the latest version of foo. In actuality, the -u in go get -u foo or go get -u โฆSee details»
About the go command - The Go Programming Language
This is more work for you, the package author, but it is significantly less work for your users, who can use " go get " without needing to obtain and build any additional tools. More information โฆSee details»
go modules - What is the difference between go get command and go โฆ
Feb 24, 2021 Clearly go get performs some dependency management which go mod download does not, but what is the difference between installing packages with go get and downloading โฆSee details»