# Golang account SDK install
To install `account sdk` to projects unauthorized users have to
1. Download `account-sdk`. (Please ask admin about the source code)
2. Place the library in local file system e.g.
```
/home/Workapaces
|
|-- <your project>
|-- account-sdk
```
3. To point to `account-sdk` we have to use go replace by update file `go.mod`
```txt=
module example
go 1.18
require (
...
bitbucket.org/ascendcorp/acw-crypto-account-sdk v0.0.0-20220915020036-f9b993196624
...
)
```
then we add `replace` (in this example we add to the 5th line)
```mod=
module example
go 1.18
replace bitbucket.org/ascendcorp/acw-crypto-account-sdk v0.0.0-20220915020036-f9b993196624 => ../account-sdk
require (
...
bitbucket.org/ascendcorp/acw-crypto-account-sdk v0.0.0-20220915020036-f9b993196624
...
)
```
4. Then running
```sh=
go mod tidy
```