- Start docker container with desired gcc version
- Add your pynev directory as a volume inside the container
- only use the same path as your user if you know what you are doing
Command:
package main | |
import ( | |
"context" | |
"database/sql" | |
"fmt" | |
_ "github.com/newrelic/go-agent/v3/integrations/nrmysql" | |
"github.com/newrelic/go-agent/v3/newrelic" | |
"gorm.io/driver/mysql" | |
"gorm.io/gorm" |
# pip install Dijkstar python-constraint | |
from constraint import * | |
from dijkstar import Graph, find_path | |
tam = 10 | |
problem = Problem() | |
variables = [] | |
for i in range(tam): |