Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Encountered "Runtime Error Keypress can be read only under TTY." When implementing pspace login #52

Closed
babcockt18 opened this issue Jan 2, 2024 · 0 comments · Fixed by #70

Comments

@babcockt18
Copy link

Ran the below github action workflow and encountered the subsequent error in the screenshot below that.

name: Create Paperspace Instance

on:
  push:
    branches:
      - main

jobs:
  create-instance:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Set up Paperspace CLI
        run: |
          curl -fsSL https://console.paperspace.com/install.sh | sh
          export PAPERSPACE_INSTALL="/home/runner/.paperspace"
          export PATH="$PAPERSPACE_INSTALL/bin:$PATH"
          echo $PATH
          pspace login --api-key ${{ secrets.PAPERSPACE_API_KEY }}

      - name: Create Paperspace Instance
        run: |
          pspace machines create \
            --region "East Coast (NY2)" \
            --machineType "GPU+" \
            --size 50 \
            --template "Ubuntu 22.04" \
            --assignPublicIp true \
            --apiKey ${{ secrets.PAPERSPACE_API_KEY }}

      # Additional steps for configuring the instance and running tests can be added here

As shown here:

Screenshot 2024-01-02 at 6 35 39 PM
ps-kwang added a commit that referenced this issue Apr 24, 2024
ps-kwang added a commit that referenced this issue Apr 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant