-
-
Notifications
You must be signed in to change notification settings - Fork 108
Description
when add ReinforcementLearning is executed I have double code in my machine:
#---------- ~/.julia/packages/ ----------#
./ReinforcementLearning//ReinforcementLearningBase/
./ReinforcementLearning//ReinforcementLearningCore/
./ReinforcementLearning//ReinforcementLearningEnvironments/
./ReinforcementLearning//ReinforcementLearningZoo/
./ReinforcementLearningBase/
./ReinforcementLearningCore/
./ReinforcementLearningEnvironments/
./ReinforcementLearningZoo/
why is this needed ?
Problem
when add ReinforcementLearning#master is executed the Base,Core,Environments,Zoo packages are not updated:
./ReinforcementLearning//ReinforcementLearningBase/ --> updated (not used)
./ReinforcementLearning//ReinforcementLearningCore/ --> updated (not used)
./ReinforcementLearning//ReinforcementLearningEnvironments/ --> updated (not used)
./ReinforcementLearning//ReinforcementLearningZoo/ --> updated (not used)
./ReinforcementLearningBase/ --> old (the one used)
./ReinforcementLearningCore/ --> old (the one used)
./ReinforcementLearningEnvironments/ --> old (the one used)
./ReinforcementLearningZoo/ --> old (the one used)
And since locally the base packages are used, this basically means that I cannot test the master branch.
I guess this is not the desired behavior..
so how to work with the master branch ?
problem also explained here: https://discourse.julialang.org/t/cannot-run-reinforcementlearning-master/64050