# @hidden_cell# The project token is an authorization token that is used to access project resources like data sources, connections, and used by platform APIs.from project_lib import Project
project = Project(project_id='7c7a9455-1916-4677-a2a9-a61a75942f58', project_access_token='p-9a4c487075063e610471d6816e286e8d0d222141')
pc = project.project_context
# Fetch the library file, for example the tar.gz or whatever installable distribution you createdwithopen("xxx-0.1.tar.gz","wb") as f:
f.write(project.get_file("xxx-0.1.tar.gz").read())
# Install the library
!pip install xxx-0.1.tar.gz